home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0789 / readme.txt < prev   
Text File  |  1997-04-10  |  4KB  |  107 lines

  1. =======================================================================
  2. PURPOSE
  3. =======================================================================
  4.     Convert NCSA MOSAIC HOT lists to NETSCAPE HTML Bookmark files.
  5.     Do NOT use on the MOSAIC.INI file.  If the URL hotlist is
  6.     kept in the MOSAIC.INI file, the MENU information CAN be cut
  7.     out of the MOSAIC.INI file, pasted in a new file, and then
  8.     the new file CAN be processed.  The program must be run from
  9.     DOS or a DOS Shell from within Windows.
  10.  
  11. =======================================================================
  12. HOW TO
  13. =======================================================================
  14. Step:
  15.  
  16. 0.    From Windows shell to DOS.
  17.  
  18. 1.    Run ncsa2net.exe at the command prompt using the following
  19.     syntax without the quotes:
  20.     "ncsa2net boeing.hot > nboeing.htm"
  21.  
  22.     NOTE: the '>' output redirection character.  This is necessary
  23.     or else the output will simply go to the screen and the
  24.     "nboeing.htm" file will NOT be created.
  25.  
  26.     The mosaic.hot file is what ever hot list file you made
  27.     with Mosaic.  Mosaic is packaged with the file "default.hot"
  28.     and this may be the file you are using.  The file is found in
  29.     the directory Mosaic is in.
  30.  
  31. 2.    Move the resulting "nboeing.htm" file to the NETSCAPE directory.
  32.  
  33. 3.    In the NETSCAPE menu system, navigate to the menu selection
  34.     "Import".  The sequence is; Bookmarks -> View Bookmarks.. ->
  35.     File -> Import.
  36.  
  37. 4.    Select the "nboeing.htm" file you created with ncsa2net.exe and
  38.     say "OK".
  39.  
  40. That's all there is to it!  You can now delete the "nboeing.htm" file and
  41. the contents of this ZIP file.
  42.  
  43. =======================================================================
  44. CONTENTS, PROGRAM STATUS & DISTRIBUTION
  45. =======================================================================
  46.     ncsa2net.c        C Source for program.
  47.     ncsa2net.exe        DOS program.
  48.     readme.txt        THIS FILE.
  49.     changes.txt        What's new in the program.
  50.     file_id.diz        BBS index file.
  51.     makefile        Borland Turbo C makefile for DOS
  52.     makefile.unx        gcc makefile for UNIX
  53.     mosaicv1.hot        Mosaic v1.x HOT list sample file.
  54.     boeing.hot        Mosaic v2.x HOT list sample file.
  55.  
  56. This is a FREE program.  Freely distribute this archive!
  57. The C source is portable to UNIX machines.
  58.  
  59. =======================================================================
  60. AUTHOR
  61. =======================================================================
  62. C Source written by Kevin Georgison.
  63. 105 Antrim Rd, Winnipeg, Manitoba, Canada
  64. http://www.mbnet.mb.ca/~georgkev
  65. georgkev@mbnet.mb.ca
  66. ljs263@freenet.mb.ca
  67.  
  68. =======================================================================
  69. PROGRAM CAPABILITIES & KNOWN BUGS 
  70. =======================================================================
  71. The ncsa2net.exe program will preserve the NCSA Mosaic HOT list menu
  72. structure.  The NCSA Mosaic HOT list can have a maximum menu tree
  73. structure of 64 levels deep.  The number of menus are unlimited.  Any
  74. submenu MUST follow the menu it is contained in.
  75.  
  76. eg.
  77.  
  78. User Menu 3 is a submenu (Item1) of User Menu 0 and User Menu 3 follows
  79. User Menu 0.
  80.  
  81. [User Menu0]
  82. Menu_Name=Starting Points
  83. Menu_Type=TOPLEVEL
  84. Item0=Starting Points Document,http://www.ncsa.uiuc.edu/StartingPoints.html
  85. Item1=MENU,UserMenu3
  86.     .
  87.     .
  88.     .
  89. [User Menu3]
  90. Menu_Name=Home Pages
  91. Item0=The University of Illinois,http://www.ncsa.uiuc.edu/UofI_intro.html
  92.     .
  93.     .
  94.     .
  95.  
  96. If a submenu precedes the menu it is contained in, the submenu will be
  97. processed as a "root level" menu and be excluded from the menu it should
  98. have been contained in.  The menu structure of the NCSA MOSAIC HOT list
  99. (boeing.hot) will not have been fully preserved in the new NETSCAPE
  100. bookmark file (nboeing.htm) but the resulting NETSCAPE bookmark file
  101. (nboeing.htm) can still be imported into the NETSCAPE book mark file
  102. (bookmark.htm).
  103.  
  104. =======================================================================
  105.             END OF DOCUMENT
  106. =======================================================================
  107.